home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Python 1.1 / Mac / MPW / Grammar-Makefile < prev    next >
Encoding:
Makefile  |  1994-08-29  |  397 b   |  26 lines  |  [TEXT/????]

  1. TOP=        ::
  2. PGENDIR=    {TOP}Parser:
  3. PGEN=        {PGENDIR}Pgen
  4. DESTH=        {TOP}Include:graminit.h
  5. DESTC=        {TOP}Python:graminit.c
  6.  
  7. all    ƒ        install
  8.  
  9. install    ƒ    {DESTH} {DESTC}
  10.  
  11. depend    ƒ
  12.  
  13. {DESTH}    ƒ    graminit.h
  14.         Duplicate -y graminit.h {DESTH}
  15.  
  16. {DESTC}    ƒ    graminit.c
  17.         Duplicate -y graminit.c {DESTC}
  18.  
  19. graminit.c graminit.h    ƒ {PGEN} Grammar
  20.         {PGEN} Grammar
  21.  
  22. clean    ƒ
  23.         Delete -i graminit.c graminit.h
  24.  
  25. clobber    ƒ    clean
  26.